home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
c4
/
pro2
/
1n06040c
< prev
next >
Wrap
Text File
|
1990-10-01
|
507b
|
27 lines
Listing 8
type
textbuf = array [0 .. 127] of char;
textrec =
record
handle, mode, bufsize : word;
private, bufpos, bufend : word;
bufptr : ^textbuf;
openfunc, inoutfunc : pointer;
flushfunc, closefunc : pointer;
userdata : array [1 .. 16] of byte;
name : array [0 .. 79] of char;
buffer : textbuf;
end;
{*
* backup the file pointer so the last character read
* can be read again
*}
procedure unread(var f : text);
begin
dec(textrec(f).bufpos);
end;